home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #6
/
Amiga Plus CD - 2004 - No. 06.iso
/
AmiSoft
/
Misc
/
emu
/
vic-emu-tools.lha
/
vic-emu-tools
/
vicstart
< prev
Wrap
AmigaDOS Script File
|
2004-05-24
|
800b
|
37 lines
.key namn,del2
;------------------------------------------------
;Script to easily load plugin games with vic-emu.
;Usage:
; vicstart cartridgeimage
;or
; vicstart part1 part2
;
;vic-emu 0.65 must be available in VIC: (make assign)
;PRGinfo must be available in C:
;
;Also use my SlowDown program to slow down the
;emulation -
; http://user.tninet.se/~hlw771b/amigastuff.html
;------------------------------------------------
if exists ram:vic
skip opa
endif
makedir ram:vic
copy vic:#? ram:vic/
lab opa
if "a" EQ "a<del2>"
copy "<namn>" ram:vic/program
cd ram:vic/
run vic-20 -s 0 -k 0 `prginfo -2 program` program
else
copy "<namn>" ram:vic/program
copy "<del2>" ram:vic/program2
cd ram:vic/
run vic-20 -s 0 -k 0 `prginfo -2 program` program `prginfo -2 program2` program2
endif